home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 001-100 / 001-025 / 020 / amigatoatari / makefile < prev    next >
Makefile  |  1995-03-17  |  1KB  |  63 lines

  1. #----
  2. #
  3. # This is the makefile for CVT.EXE for the IBM-PC.  If you don't
  4. # have MAKE, then don't sweat it -- you can use the binaries or compile
  5. # it by hand.
  6. #
  7. # Bugs, comments, letter bombs to:
  8. #
  9. #    Landon Dyer        G.DYER@SU-SCORE.ARPA
  10. #    Atari Corp.        ... {hoptoad, lll-crg!vecpyr}!atari!dyer
  11. #    1196 Borregas Ave
  12. #    Sunnyvale, CA 94088
  13. #
  14. #----
  15. #
  16. # No warranty is expressed or implied.  This is public domain software,
  17. # free for the asking.  You may modify it however you wish, but you are
  18. # not permitted to sell this work, or any modification of it.
  19. #
  20. #----
  21. #
  22. # You will need your OWN quicksort, as the version I use is from 4.2BSD,
  23. # and I'm not sure if it's legal to distribute it.
  24. # (I've added the decus qsort() routine;  Fred Fish 23-Apr-86)
  25. #
  26. #----
  27. #
  28. #
  29. # Change these to reflect where the libraries and so on are on your system.
  30. # (This is for Lattice C 2.11 or something like that).
  31. #
  32.  
  33. CC =        cc
  34. SUBRS =        binfio.o efopen.o
  35. CONVERTOBJS =    convertm.o convert.o longio.o qsort.o $(SUBRS)
  36.  
  37. cvt :        $(CONVERTOBJS)
  38.         $(CC) -o cvt $(CONVERTOBJS)
  39.  
  40. convertm.o :    convertm.c
  41.         $(CC) -c $(CFLAGS) convertm.c
  42.  
  43. convert.o :    convert.c
  44.         $(CC) -c $(CFLAGS) convert.c
  45.  
  46. qsort.o :    qsort.c
  47.         $(CC) -c $(CFLAGS) qsort.c
  48.  
  49. longio.o :    longio.c
  50.         $(CC) -c $(CFLAGS) longio.c
  51.  
  52. #
  53. # Random tools (I port these from
  54. # system to system...):
  55. #
  56.  
  57. binfio.o :    binfio.c
  58.         $(CC) -c $(CFLAGS) binfio.c
  59.  
  60. efopen.o :    efopen.c
  61.         $(CC) -c $(CFLAGS) efopen.c
  62.  
  63.